home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00020_ivCredits init.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  1.2 KB  |  33 lines

  1. on enterFrame
  2.   global givState, gSIUserName, givMAINMONITORSPRITE, givWhichText, gSISystem
  3.   if gSISystem = "MAC" then
  4.     set the castNum of sprite givMAINMONITORSPRITE to the number of cast "CreditsBackground"
  5.   else
  6.     set the castNum of sprite givMAINMONITORSPRITE to the number of cast "CreditsBackground.PC"
  7.   end if
  8.   puppetSprite(24, 1)
  9.   puppetSprite(25, 1)
  10.   puppetSprite(26, 1)
  11.   set the textSize of field "enter name" to 12
  12.   set the textSize of field "enter title" to 12
  13.   set the textSize of field "enter location" to 12
  14.   if the userName of givState = EMPTY then
  15.     set the text of field "enter name" to " "
  16.   else
  17.     set the text of field "enter name" to the userName of givState
  18.   end if
  19.   if the userTitle of givState = EMPTY then
  20.     set the text of field "enter title" to "Awesome Athletes"
  21.   else
  22.     set the text of field "enter title" to the userTitle of givState
  23.   end if
  24.   if the userLoc of givState = EMPTY then
  25.     set the text of field "enter location" to " "
  26.   else
  27.     set the text of field "enter location" to the userLoc of givState
  28.   end if
  29.   set givWhichText to 24
  30.   set the editableText of sprite givWhichText to 1
  31.   set the keyDownScript to "CreditsKeyDown"
  32. end
  33.